5bc2aa2f316007065f33163449beb14463f7fefb,portal-impl/test/integration/com/liferay/portal/security/pacl/test/ThreadTest.java,ThreadTest,testPortalExecutor6,#,487

Before Change


	@Test
	public void testPortalExecutor6() throws Exception {
		try {
			PortalExecutorManagerUtil.shutdown("liferay/test_pacl");

			PortalExecutorManagerUtil.getPortalExecutor(
				"liferay/test_pacl", true);

After Change


	@Test
	public void testPortalExecutor6() throws Exception {
		try {
			ThreadPoolExecutor threadPoolExecutor =
				PortalExecutorManagerUtil.getPortalExecutor(
					"liferay/test_pacl");

			threadPoolExecutor.shutdown();

			threadPoolExecutor.awaitTermination(1, TimeUnit.MINUTES);